home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE14
/
SYSTEM
/
FORMDEMO.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-09-01
|
226 b
|
13 lines
program FormDemo;
uses WinTypes, WinProcs;
function SHFormatDrive (Wnd: hWnd; Drive, Size, Options: Integer): Integer;
far; external 'SHELL';
{ Full format of drive A }
begin
SHFormatDrive (0, 0, 0, 0);
end.